home *** CD-ROM | disk | FTP | other *** search
- /*
- * Simulate some X11 functions used in Xanim
- * (c) 1995 Andreas Windemuth
- */
-
- #include "aux.h"
-
- #define StaticGray 1
- #define GrayScale 2
- #define StaticColor 3
- #define PseudoColor 4
- #define TrueColor 5
- #define DirectColor 6
-
- typedef struct xim_s {
- char *data;
- } XImage;
-
- typedef struct xpm_s {
- char *data;
- } *Pixmap;
-
- #define False FALSE
-
- extern ULONG X11_Get_True_Color();
- extern ULONG X11_Get_Line_Size();
-
- #define XYPixmap 1
- #define ZPixmap 2
-
- #define XCreateImage(a,b,c,d,e,f,g,h,j,k) NULL
- #define XCreatePixmap(a,b,c,d,e) NULL
- #define XCreatePixmapFromBitmapData(a,b,c,d,e,f,g,h) NULL
- #define XSync(a,b) {}
- #define XFreePixmap(a, b) {}
- #define XSetClipMask(a,b,c) {}
- #define XPutImage(a,b,c,d,e,f,g,h,j,k) {}
- #define XDestroyImage(a) {}
-